This report describes the results of the first priming mindfulness study. It was initially made using Dominique Makowski’s Supplementary Materials template. Two similar templates will be created based on the two online pilot studies from the Varela project.
This is an exploratory (not confirmatory) study. The result of this exploration will be used to conduct a second, confirmatory, preregistered study.
library(rempsyc)
library(dplyr)
library(interactions)
library(performance)
library(see)
library(ggplot2)
library(report)
library(bestNormalize)
summary(report(sessionInfo()))The analysis was done using the R Statistical language (v4.2.0; R Core Team, 2022) on Windows 10 x64, using the packages bestNormalize (v1.8.2), ggplot2 (v3.3.6), interactions (v1.1.5), performance (v0.9.1), see (v0.7.0), report (v0.5.1.2), dplyr (v1.0.8) and rempsyc (v0.0.4.6).
data <- read.csv("data/fulldataset.csv")
# Dummy-code group variable
data <- data %>%
mutate(condition_dum = ifelse(condition == "Mindfulness", 1, 0),
condition = as.factor(condition))
cat(report_participants(data, threshold = 1))272 participants (Country: 93.75% USA, 1.47% Canada, 1.47% India, 1.47% missing, 1.84% other)
# Allocation ratio
report(data$condition)x: 2 levels, namely Control (n = 139, 51.10%) and Mindfulness (n = 133, 48.90%)
In this stage, we define a list of our relevant variables and standardize them according to the Median Absolute Deviation (MAD), which is more robust to extreme observations than standardization around the mean.
# Make list of DVs
col.list <- c("blastintensity", "blastduration", "blastintensity.duration",
"blastintensity.first", "blastduration.first",
"blastintensity.duration.first", "all50trials", "KIMS", "BSCS", "BAQ",
"SOPT", "IAT")
# Create new variable blastintensity.duration
data <- data |>
mutate(blastintensity.duration = blastintensity * blastduration,
blastintensity.duration.first = blastintensity.first * blastduration.first)
# Divide by 2? Do some other sort of transformation given I multiplied two scores?
# Should I multiply them after standardization or before?Why combine the intensity and duration scores? Should we? For a discussion, see:
Elson, M., Mohseni, M. R., Breuer, J., Scharkow, M., & Quandt, T. (2014). Press CRTT to measure aggressive behavior: the unstandardized use of the competitive reaction time task in aggression research. Psychological assessment, 26(2), 419. https://doi.org/10.1037/a0035569
Why use the first sound blast only instead of the average of all trials? Should we?
According to some, the Taylor Aggression Paradigm is not a measure of aggression per say, but of reactive aggression, because participants react to the other “participant’s” aggression. They suggest that for a pure measure of aggression, it is recommended to use only the first sound blast used by the participant before he receives one himself. At this stage, we attempt the analyses with all these different measures of aggression for exploratory purposes. See earlier reference to Elson et al. (2014):
We note that Lobbestael et al. (2021) suggests, based on factor analysis, separately averaging all preprovocation versus all postprovocation trials. However, this recommendation applies to the 30-trial version (we have the 25 trial version). They add:
Lobbestael, J., Emmerling, F., Brugman, S., Broers, N., Sack, A. T., Schuhmann, T., … & Arntz, A. (2021). Toward a more valid assessment of behavioral aggression: An open source platform and an empirically derived scoring method for using the Competitive Reaction Time Task (CRTT). Assessment, 28(4), 1065-1079. https://doi.org/10.1177/1073191120959757
Therefore, it is assumed safe to use and combine all 25 trials. However, we also note (again) the very high heterogeneity in quantification strategies:
See: https://www.flexiblemeasures.com/crtt/
Thus the recommandations are:
See: https://www.flexiblemeasures.com/crtt/index.php?menu=recommendations
After discussion with Dr. David Chester, it was also suggested to use the average of all 50 standardized trials, as in Chester & Lasko 2019 and Lasko & Chester (2022).
Chester & Lasko (2019). Validating a standardized approach to the Taylor Aggression Paradigm. Social Psychological and Personality Science, 10(5), 620-631. https://doi.org/10.1177/1948550618775408
Lasko & Chester (2022). Measurement invariance and item response theory analysis of the taylor aggression paradigm. Assessment, 29(5), 981-992. https://doi.org/10.1177/1073191121996450
Still, he also notes,
In one of our papers, we show that the major approaches to scoring the CRTT typically arrive at the same result, so in the end, the scoring strategy you choose is unlikely to have a large effect on your findings.
That said, technically speaking, if a participant sets the intensity to 10, but duration to 0, there is no actual sound blast for that trial. Similarly, if a participant sets the duration to 10, but intensity to 0, there is no actual sound blast for that trial. Taking the product of intensity and duration takes this dynamic into account. In contrast, other methods using the sum of intensity and duration, or yet again the average of all 50 trials (intensity and duration) does not. That said, perhaps it is not a big deal given that this particular scenario (including 0 for one of the two settings) is probably rare.
Fortunately, Dr. Chester also recommends a better (but more complex) approach:
If it’s possible, a superior approach to this aggregate scoring strategy is to employ multilevel modeling instead of a univariate analysis. When you aggregate across all 50 of the individual CRTT measures, you are losing a lot of information/variability/statistical-power. Multilevel modeling on the non-aggregated data allows you to retain this variability.
Although it is not clear so far if this technique can be applied to our particular situation.
First, we know that we only want to keep participants who had at least an 80% success rate in the critical experimental manipulation task. Let’s see how many participants have less than an 80% success rate.
data %>%
filter(manipsuccessleft < .80) %>%
count()| n |
|---|
| 17 |
There’s 17 people, let’s exclude them.
data <- data %>%
filter(manipsuccessleft >= .80)
cat(report_participants(data, threshold = 1))255 participants (Country: 94.90% USA, 1.57% missing, 1.18% Canada, 2.35% other)
In this section, we will: (a) test assumptions of normality, (b) transform variables violating assumptions, (c) test assumptions of homoscedasticity, (d) identify and winsorize outliers, and (e) conduct the t-tests.
lapply(col.list, function(x)
nice_normality(data,
variable = x,
title = x,
group = "condition",
shapiro = TRUE,
histogram = TRUE))## [[1]]
##
## [[2]]
##
## [[3]]
##
## [[4]]
##
## [[5]]
##
## [[6]]
##
## [[7]]
##
## [[8]]
##
## [[9]]
##
## [[10]]
##
## [[11]]
##
## [[12]]
Several variables are clearly skewed. Let’s apply transformations. But first, let’s deal with the working memory task, SOPT (Self-Ordered Pointing Task). It is clearly problematic.
Let’s do an histogram proper to see if it helps diagnosing the problem with SOPT.
hist(data$SOPT)That looks weird, there’s some obvious outliers here; they probably didn’t do the task correctly, especially since there’s a gap after 60 errors. Let’s see how many people made more than 60 errors.
data %>%
filter(SOPT < -60) %>%
count| n |
|---|
| 10 |
There’s 10 people with more than 60 errors. Let’s exclude them.
data <- data %>%
filter(SOPT >= -60)
cat(report_participants(data, threshold = 1))245 participants (Country: 94.69% USA, 1.63% missing, 1.22% Canada, 2.45% other)
Normally, the SOPT raw scores represent the number of errors, but I had multiplied it by -1 initially so that a smaller score would mean lower working memory capacity. Here we reverse it again to be able to use the various transformations. We also add a constant of 1 to avoid scores of zero which can interfere with the transformation (and so the Box Cox transformation can be considered).
data <- data %>%
mutate(SOPT = SOPT * -1 + 1)The function below transforms variables according to the best
possible transformation (via the bestNormalize package),
and also standardizes the variables.
predict_bestNormalize <- function(var) {
x <- bestNormalize(var, standardize = TRUE, allow_orderNorm = FALSE)
print(cur_column())
print(x$chosen_transform)
cat("\n")
predict(x)
}
set.seed(100)
data <- data %>%
mutate(across(all_of(col.list),
predict_bestNormalize,
.names = "{.col}.BN"))## [1] "blastintensity"
## center_scale(x) Transformation with 245 nonmissing obs.
## Estimated statistics:
## - mean (before standardization) = 4.645878
## - sd (before standardization) = 2.449111
##
## [1] "blastduration"
## center_scale(x) Transformation with 245 nonmissing obs.
## Estimated statistics:
## - mean (before standardization) = 1039.241
## - sd (before standardization) = 455.0627
##
## [1] "blastintensity.duration"
## Standardized sqrt(x + a) Transformation with 245 nonmissing obs.:
## Relevant statistics:
## - a = 0
## - mean (before standardization) = 68.97142
## - sd (before standardization) = 32.98318
##
## [1] "blastintensity.first"
## center_scale(x) Transformation with 245 nonmissing obs.
## Estimated statistics:
## - mean (before standardization) = 5.902041
## - sd (before standardization) = 3.453229
##
## [1] "blastduration.first"
## center_scale(x) Transformation with 245 nonmissing obs.
## Estimated statistics:
## - mean (before standardization) = 1149.265
## - sd (before standardization) = 632.9021
##
## [1] "blastintensity.duration.first"
## Standardized sqrt(x + a) Transformation with 245 nonmissing obs.:
## Relevant statistics:
## - a = 0
## - mean (before standardization) = 79.5202
## - sd (before standardization) = 45.60531
##
## [1] "all50trials"
## Standardized asinh(x) Transformation with 245 nonmissing obs.:
## Relevant statistics:
## - mean (before standardization) = -0.01371295
## - sd (before standardization) = 0.6379012
##
## [1] "KIMS"
## Standardized sqrt(x + a) Transformation with 245 nonmissing obs.:
## Relevant statistics:
## - a = 0
## - mean (before standardization) = 1.845274
## - sd (before standardization) = 0.1292061
##
## [1] "BSCS"
## center_scale(x) Transformation with 245 nonmissing obs.
## Estimated statistics:
## - mean (before standardization) = 3.583673
## - sd (before standardization) = 0.7898656
##
## [1] "BAQ"
## Standardized Log_b(x + a) Transformation with 245 nonmissing obs.:
## Relevant statistics:
## - a = 0
## - b = 10
## - mean (before standardization) = 0.4662388
## - sd (before standardization) = 0.1371817
##
## [1] "SOPT"
## Standardized asinh(x) Transformation with 245 nonmissing obs.:
## Relevant statistics:
## - mean (before standardization) = 3.176059
## - sd (before standardization) = 0.6035038
##
## [1] "IAT"
## Standardized Yeo-Johnson Transformation with 245 nonmissing obs.:
## Estimated statistics:
## - lambda = 0.7429982
## - mean (before standardization) = -0.5513654
## - sd (before standardization) = 0.4077873
col.list <- paste0(col.list, ".BN")Let’s check if normality was corrected.
# Group normality
lapply(col.list, function(x)
nice_normality(data,
x,
"condition",
shapiro = TRUE,
title = x,
histogram = TRUE))## [[1]]
##
## [[2]]
##
## [[3]]
##
## [[4]]
##
## [[5]]
##
## [[6]]
##
## [[7]]
##
## [[8]]
##
## [[9]]
##
## [[10]]
##
## [[11]]
##
## [[12]]
Looks rather reasonable now, though not perfect (fortunately t-tests are quite robust against violations of normality).
We will also standardize the variables based on the MAD.
# Standardize and center main continuous IV variable (based on MAD)
# data <- data %>%
# mutate(across(all_of(col.list),
# ~scale_mad(.x),
# .names = "{col}"))We can now resume with the next step: checking variance.
# Plotting variance
plots(lapply(col.list, function(x) {
nice_varplot(data, x, group = "condition")
}),
n_columns = 3)Variance looks good. No group has four times the variance of any other group. We can now resume with checking outliers.
# Using boxplots
plots(lapply(col.list, function(x) {
ggplot(data, aes(condition, !!sym(x))) +
geom_boxplot()
}),
n_columns = 3)There are some outliers, but nothing unreasonable. Let’s still check with the 3 median absolute deviations (MAD) method.
find_mad(data, col.list, criteria = 3)## 5 outlier(s) based on 3 median absolute deviations for variable(s):
## blastintensity.BN, blastduration.BN, blastintensity.duration.BN, blastintensity.first.BN, blastduration.first.BN, blastintensity.duration.first.BN, all50trials.BN, KIMS.BN, BSCS.BN, BAQ.BN, SOPT.BN, IAT.BN,
##
## Outliers per variable:
## $SOPT.BN
## Row SOPT.BN
## 1 61 -3.802272
## 2 84 -2.870609
## 3 90 -2.870609
## 4 218 -3.802272
##
## $IAT.BN
## Row IAT.BN
## 1 209 -2.785377
There are 5 outliers after our transformations.
Visual assessment and the MAD method confirm we have some outlier values. We could ignore them but because they could have disproportionate influence on the models, one recommendation is to winsorize them by bringing the values at 3 SD. Instead of using the standard deviation around the mean, however, we use the absolute deviation around the median, as it is more robust to extreme observations. For a discussion, see:
Leys, C., Klein, O., Bernard, P., & Licata, L. (2013). Detecting outliers: Do not use standard deviation around the mean, use absolute deviation around the median. Journal of Experimental Social Psychology, 49(4), 764–766. https://doi.org/10.1016/j.jesp.2013.03.013
# Winsorize variables of interest with MAD
data <- data %>%
mutate(across(all_of(col.list),
winsorize_mad,
.names = "{.col}.w"))
# Update col.list
col.list <- paste0(col.list, ".w")Outliers are still present but were brought back within reasonable limits, where applicable. We are now ready to compare the group condition (Control vs. Mindfulness Priming) across our different variables with the t-tests.
nice_t_test(data,
response = col.list,
group = "condition") %>%
nice_table(highlight = 0.10, width = .80)## Using Welch t-test (base R's default; cf. https://doi.org/10.5334/irsp.82).
## For the Student t-test, use `var.equal = TRUE`.
##
##
Dependent Variable | t | df | p | d | 95% CI |
blastintensity.BN.w | -1.76 | 234.38 | .079 | -0.23 | [-0.48, 0.03] |
blastduration.BN.w | -0.73 | 237.03 | .469 | -0.09 | [-0.34, 0.16] |
blastintensity.duration.BN.w | -1.35 | 235.28 | .177 | -0.17 | [-0.42, 0.08] |
blastintensity.first.BN.w | -0.05 | 240.66 | .957 | -0.01 | [-0.26, 0.24] |
blastduration.first.BN.w | 0.25 | 241.71 | .800 | 0.03 | [-0.22, 0.28] |
blastintensity.duration.first.BN.w | 0.11 | 240.36 | .916 | 0.01 | [-0.24, 0.26] |
all50trials.BN.w | -1.31 | 236.74 | .191 | -0.17 | [-0.42, 0.08] |
KIMS.BN.w | -0.89 | 238.37 | .373 | -0.11 | [-0.37, 0.14] |
BSCS.BN.w | -0.56 | 241.74 | .578 | -0.07 | [-0.32, 0.18] |
BAQ.BN.w | 1.33 | 241.69 | .185 | 0.17 | [-0.08, 0.42] |
SOPT.BN.w | 0.51 | 237.40 | .609 | 0.07 | [-0.19, 0.32] |
IAT.BN.w | 1.31 | 242.46 | .191 | 0.17 | [-0.08, 0.42] |
Interpretation: There is no clear group effect from our experimental condition on our different variables. However, there is a marginal effect of condition on blast intensity, whereas the mindfulness group has slightly higher blast intensity than the control group. Let’s visualize this effect.
nice_violin(data,
group = "condition",
response = "blastintensity.BN.w",
comp1 = 1,
comp2 = 2,
obs = TRUE,
has.d = TRUE,
d.y = 1)nice_violin(data,
group = "condition",
response = "blastduration.BN.w",
comp1 = 1,
comp2 = 2,
obs = TRUE,
has.d = TRUE,
d.y = 1)nice_violin(data,
group = "condition",
response = "blastintensity.duration.BN.w",
comp1 = 1,
comp2 = 2,
obs = TRUE,
has.d = TRUE,
d.y = 1)nice_violin(data,
group = "condition",
response = "blastintensity.first.BN.w",
comp1 = 1,
comp2 = 2,
obs = TRUE,
has.d = TRUE,
d.y = -0.8)nice_violin(data,
group = "condition",
response = "blastduration.first.BN.w",
comp1 = 1,
comp2 = 2,
obs = TRUE,
has.d = TRUE,
d.y = -1.5)Let’s extract the means and standard deviations for journal reporting.
data %>%
group_by(condition) %>%
summarize(M = mean(blastintensity),
SD = sd(blastintensity),
N = n()) %>%
nice_table(width = 0.40)condition | M | SD | N |
Control | 4.38 | 2.32 | 128 |
Mindfulness | 4.93 | 2.57 | 117 |
data %>%
group_by(condition) %>%
summarize(M = mean(blastduration),
SD = sd(blastduration),
N = n()) %>%
nice_table(width = 0.40)condition | M | SD | N |
Control | 1,019.01 | 440.26 | 128 |
Mindfulness | 1,061.38 | 471.63 | 117 |
data %>%
group_by(condition) %>%
summarize(M = mean(blastintensity.duration),
SD = sd(blastintensity.duration),
N = n()) %>%
nice_table(width = 0.40)condition | M | SD | N |
Control | 5,368.70 | 4,245.46 | 128 |
Mindfulness | 6,356.67 | 5,041.47 | 117 |
data %>%
group_by(condition) %>%
summarize(M = mean(blastintensity.first),
SD = sd(blastintensity.first),
N = n()) %>%
nice_table(width = 0.40)condition | M | SD | N |
Control | 5.89 | 3.45 | 128 |
Mindfulness | 5.91 | 3.48 | 117 |
data %>%
group_by(condition) %>%
summarize(M = mean(blastduration.first),
SD = sd(blastduration.first),
N = n()) %>%
nice_table(width = 0.40)condition | M | SD | N |
Control | 1,159.06 | 639.34 | 128 |
Mindfulness | 1,138.55 | 628.35 | 117 |
Let’s see if our variables don’t interact together with our experimental condition. But first, let’s test the models assumptions.
big.mod1 <- lm(blastintensity.BN.w ~ condition_dum*KIMS.BN.w +
condition_dum*BSCS.BN.w + condition_dum*BAQ.BN.w +
condition_dum*SOPT.BN.w + condition_dum*IAT.BN.w,
data = data, na.action="na.exclude")
check_model(big.mod1)big.mod2 <- lm(blastduration.BN.w ~ condition_dum*KIMS.BN.w +
condition_dum*BSCS.BN.w + condition_dum*BAQ.BN.w +
condition_dum*SOPT.BN.w + condition_dum*IAT.BN.w,
data = data, na.action="na.exclude")
check_model(big.mod2)big.mod3 <- lm(blastintensity.duration.BN.w ~ condition_dum*KIMS.BN.w +
condition_dum*BSCS.BN.w + condition_dum*BAQ.BN.w +
condition_dum*SOPT.BN.w + condition_dum*IAT.BN.w,
data = data, na.action="na.exclude")
check_model(big.mod3)big.mod4 <- lm(blastintensity.first.BN.w ~ condition_dum*KIMS.BN.w +
condition_dum*BSCS.BN.w + condition_dum*BAQ.BN.w +
condition_dum*SOPT.BN.w + condition_dum*IAT.BN.w,
data = data, na.action="na.exclude")
check_model(big.mod4)big.mod5 <- lm(blastduration.first.BN.w ~ condition_dum*KIMS.BN.w +
condition_dum*BSCS.BN.w + condition_dum*BAQ.BN.w +
condition_dum*SOPT.BN.w + condition_dum*IAT.BN.w,
data = data, na.action="na.exclude")
check_model(big.mod5)All the models assumptions look pretty good overall actually, even with all these variables. The lines for linearity and homoscedasticity are a bit skewed but nothing too crazy. Let’s now look at the results.
big.mod1 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
blastintensity.BN.w | condition_dum | 233 | 0.27 | 2.24 | .026 | .02 |
blastintensity.BN.w | KIMS.BN.w | 233 | 0.13 | 1.30 | .193 | .01 |
blastintensity.BN.w | BSCS.BN.w | 233 | -0.14 | -1.47 | .142 | .01 |
blastintensity.BN.w | BAQ.BN.w | 233 | 0.10 | 1.04 | .300 | .00 |
blastintensity.BN.w | SOPT.BN.w | 233 | 0.25 | 2.65 | .009 | .02 |
blastintensity.BN.w | IAT.BN.w | 233 | 0.17 | 1.90 | .059 | .01 |
blastintensity.BN.w | condition_dum:KIMS.BN.w | 233 | -0.20 | -1.41 | .160 | .01 |
blastintensity.BN.w | condition_dum:BSCS.BN.w | 233 | 0.49 | 3.32 | .001 | .04 |
blastintensity.BN.w | condition_dum:BAQ.BN.w | 233 | 0.05 | 0.33 | .739 | .00 |
blastintensity.BN.w | condition_dum:SOPT.BN.w | 233 | 0.10 | 0.75 | .452 | .00 |
blastintensity.BN.w | condition_dum:IAT.BN.w | 233 | -0.16 | -1.26 | .209 | .01 |
big.mod2 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
blastduration.BN.w | condition_dum | 233 | 0.14 | 1.22 | .225 | .01 |
blastduration.BN.w | KIMS.BN.w | 233 | 0.12 | 1.24 | .215 | .01 |
blastduration.BN.w | BSCS.BN.w | 233 | -0.14 | -1.45 | .149 | .01 |
blastduration.BN.w | BAQ.BN.w | 233 | 0.04 | 0.37 | .711 | .00 |
blastduration.BN.w | SOPT.BN.w | 233 | 0.31 | 3.36 | .001 | .04 |
blastduration.BN.w | IAT.BN.w | 233 | 0.23 | 2.70 | .007 | .02 |
blastduration.BN.w | condition_dum:KIMS.BN.w | 233 | -0.23 | -1.66 | .098 | .01 |
blastduration.BN.w | condition_dum:BSCS.BN.w | 233 | 0.55 | 3.79 | < .001 | .05 |
blastduration.BN.w | condition_dum:BAQ.BN.w | 233 | 0.11 | 0.82 | .412 | .00 |
blastduration.BN.w | condition_dum:SOPT.BN.w | 233 | 0.07 | 0.55 | .586 | .00 |
blastduration.BN.w | condition_dum:IAT.BN.w | 233 | -0.17 | -1.40 | .163 | .01 |
big.mod3 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
blastintensity.duration.BN.w | condition_dum | 233 | 0.22 | 1.87 | .063 | .01 |
blastintensity.duration.BN.w | KIMS.BN.w | 233 | 0.13 | 1.35 | .178 | .01 |
blastintensity.duration.BN.w | BSCS.BN.w | 233 | -0.14 | -1.50 | .135 | .01 |
blastintensity.duration.BN.w | BAQ.BN.w | 233 | 0.08 | 0.83 | .409 | .00 |
blastintensity.duration.BN.w | SOPT.BN.w | 233 | 0.29 | 3.07 | .002 | .03 |
blastintensity.duration.BN.w | IAT.BN.w | 233 | 0.20 | 2.26 | .025 | .02 |
blastintensity.duration.BN.w | condition_dum:KIMS.BN.w | 233 | -0.22 | -1.58 | .115 | .01 |
blastintensity.duration.BN.w | condition_dum:BSCS.BN.w | 233 | 0.53 | 3.64 | < .001 | .05 |
blastintensity.duration.BN.w | condition_dum:BAQ.BN.w | 233 | 0.08 | 0.56 | .576 | .00 |
blastintensity.duration.BN.w | condition_dum:SOPT.BN.w | 233 | 0.08 | 0.65 | .515 | .00 |
blastintensity.duration.BN.w | condition_dum:IAT.BN.w | 233 | -0.16 | -1.31 | .190 | .01 |
big.mod4 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
blastintensity.first.BN.w | condition_dum | 233 | 0.04 | 0.34 | .733 | .00 |
blastintensity.first.BN.w | KIMS.BN.w | 233 | -0.05 | -0.48 | .634 | .00 |
blastintensity.first.BN.w | BSCS.BN.w | 233 | -0.07 | -0.71 | .481 | .00 |
blastintensity.first.BN.w | BAQ.BN.w | 233 | 0.11 | 1.09 | .275 | .00 |
blastintensity.first.BN.w | SOPT.BN.w | 233 | 0.18 | 1.84 | .067 | .01 |
blastintensity.first.BN.w | IAT.BN.w | 233 | 0.15 | 1.65 | .101 | .01 |
blastintensity.first.BN.w | condition_dum:KIMS.BN.w | 233 | 0.00 | 0.01 | .992 | .00 |
blastintensity.first.BN.w | condition_dum:BSCS.BN.w | 233 | 0.39 | 2.54 | .012 | .02 |
blastintensity.first.BN.w | condition_dum:BAQ.BN.w | 233 | -0.10 | -0.70 | .486 | .00 |
blastintensity.first.BN.w | condition_dum:SOPT.BN.w | 233 | 0.08 | 0.61 | .544 | .00 |
blastintensity.first.BN.w | condition_dum:IAT.BN.w | 233 | -0.10 | -0.77 | .442 | .00 |
big.mod5 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
blastduration.first.BN.w | condition_dum | 233 | 0.00 | 0.01 | .995 | .00 |
blastduration.first.BN.w | KIMS.BN.w | 233 | -0.08 | -0.72 | .471 | .00 |
blastduration.first.BN.w | BSCS.BN.w | 233 | -0.02 | -0.23 | .819 | .00 |
blastduration.first.BN.w | BAQ.BN.w | 233 | 0.01 | 0.12 | .906 | .00 |
blastduration.first.BN.w | SOPT.BN.w | 233 | 0.16 | 1.60 | .111 | .01 |
blastduration.first.BN.w | IAT.BN.w | 233 | 0.13 | 1.44 | .150 | .01 |
blastduration.first.BN.w | condition_dum:KIMS.BN.w | 233 | -0.07 | -0.50 | .619 | .00 |
blastduration.first.BN.w | condition_dum:BSCS.BN.w | 233 | 0.42 | 2.68 | .008 | .03 |
blastduration.first.BN.w | condition_dum:BAQ.BN.w | 233 | 0.13 | 0.92 | .361 | .00 |
blastduration.first.BN.w | condition_dum:SOPT.BN.w | 233 | 0.08 | 0.60 | .550 | .00 |
blastduration.first.BN.w | condition_dum:IAT.BN.w | 233 | -0.16 | -1.19 | .234 | .01 |
big.mod6 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
blastintensity.duration.first.BN.w | condition_dum | 233 | 0.02 | 0.18 | .856 | .00 |
blastintensity.duration.first.BN.w | KIMS.BN.w | 233 | -0.08 | -0.78 | .439 | .00 |
blastintensity.duration.first.BN.w | BSCS.BN.w | 233 | -0.04 | -0.45 | .655 | .00 |
blastintensity.duration.first.BN.w | BAQ.BN.w | 233 | 0.08 | 0.78 | .436 | .00 |
blastintensity.duration.first.BN.w | SOPT.BN.w | 233 | 0.18 | 1.79 | .075 | .01 |
blastintensity.duration.first.BN.w | IAT.BN.w | 233 | 0.12 | 1.35 | .178 | .01 |
blastintensity.duration.first.BN.w | condition_dum:KIMS.BN.w | 233 | -0.03 | -0.24 | .810 | .00 |
blastintensity.duration.first.BN.w | condition_dum:BSCS.BN.w | 233 | 0.44 | 2.86 | .005 | .03 |
blastintensity.duration.first.BN.w | condition_dum:BAQ.BN.w | 233 | 0.03 | 0.18 | .859 | .00 |
blastintensity.duration.first.BN.w | condition_dum:SOPT.BN.w | 233 | 0.07 | 0.51 | .609 | .00 |
blastintensity.duration.first.BN.w | condition_dum:IAT.BN.w | 233 | -0.12 | -0.94 | .347 | .00 |
big.mod7 %>%
nice_lm() %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor | df | b | t | p | sr2 |
all50trials.BN.w | condition_dum | 233 | 0.22 | 1.82 | .069 | .01 |
all50trials.BN.w | KIMS.BN.w | 233 | 0.12 | 1.18 | .240 | .00 |
all50trials.BN.w | BSCS.BN.w | 233 | -0.13 | -1.35 | .177 | .01 |
all50trials.BN.w | BAQ.BN.w | 233 | 0.08 | 0.80 | .423 | .00 |
all50trials.BN.w | SOPT.BN.w | 233 | 0.29 | 3.03 | .003 | .03 |
all50trials.BN.w | IAT.BN.w | 233 | 0.21 | 2.42 | .016 | .02 |
all50trials.BN.w | condition_dum:KIMS.BN.w | 233 | -0.19 | -1.38 | .169 | .01 |
all50trials.BN.w | condition_dum:BSCS.BN.w | 233 | 0.50 | 3.42 | .001 | .04 |
all50trials.BN.w | condition_dum:BAQ.BN.w | 233 | 0.08 | 0.57 | .570 | .00 |
all50trials.BN.w | condition_dum:SOPT.BN.w | 233 | 0.08 | 0.63 | .529 | .00 |
all50trials.BN.w | condition_dum:IAT.BN.w | 233 | -0.17 | -1.40 | .164 | .01 |
Interpretation: The condition by trait self-control (brief self-control scale, BSCS) interaction comes up for all variables (so it must be somewhat reliable).
Let’s plot the main significant interaction(s).
interact_plot(big.mod1, pred = "condition_dum", modx = "BSCS.BN.w",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")interact_plot(big.mod2, pred = "condition_dum", modx = "BSCS.BN.w",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")interact_plot(big.mod3, pred = "condition_dum", modx = "BSCS.BN.w",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")interact_plot(big.mod4, pred = "condition_dum", modx = "BSCS.BN.w",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")interact_plot(big.mod5, pred = "condition_dum", modx = "BSCS.BN.w",
modxvals = NULL, interval = TRUE, x.label = "Condition",
pred.labels = c("Control", "Mindfulness"),
legend.main = "Trait Self-Control")Interpretation: The interaction is pretty much the same for all models. Counterintuitively, for people with low self-control, the priming mindfulness condition relates to lower aggression relative to the control condition. In contrast, for people with high self-control, the priming mindfulness condition relates to higher aggression.
Let’s look at the simple slopes now (only for the significant interaction).
big.mod1 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
blastintensity.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.23 | -1.18 | .238 | .00 |
blastintensity.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.27 | 2.24 | .026 | .02 |
blastintensity.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.76 | 3.99 | < .001 | .06 |
big.mod2 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
blastduration.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.41 | -2.19 | .030 | .02 |
blastduration.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.14 | 1.22 | .225 | .01 |
blastduration.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.70 | 3.72 | < .001 | .05 |
big.mod3 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
blastintensity.duration.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.31 | -1.66 | .098 | .01 |
blastintensity.duration.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.22 | 1.87 | .063 | .01 |
blastintensity.duration.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.76 | 4.01 | < .001 | .06 |
big.mod4 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
blastintensity.first.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.35 | -1.76 | .080 | .01 |
blastintensity.first.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.04 | 0.34 | .733 | .00 |
blastintensity.first.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.43 | 2.19 | .029 | .02 |
big.mod5 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
blastduration.first.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.42 | -2.08 | .038 | .02 |
blastduration.first.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.00 | 0.01 | .995 | .00 |
blastduration.first.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.42 | 2.10 | .037 | .02 |
big.mod6 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
blastintensity.duration.first.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.42 | -2.11 | .036 | .02 |
blastintensity.duration.first.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.02 | 0.18 | .856 | .00 |
blastintensity.duration.first.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.46 | 2.35 | .020 | .02 |
big.mod7 %>%
nice_lm_slopes(predictor = "condition_dum",
moderator = "BSCS.BN.w") %>%
nice_table(highlight = TRUE)Dependent Variable | Predictor (+/-1 SD) | df | b | t | p | sr2 |
all50trials.BN.w | condition_dum (LOW-BSCS.BN.w) | 233 | -0.29 | -1.52 | .130 | .01 |
all50trials.BN.w | condition_dum (MEAN-BSCS.BN.w) | 233 | 0.22 | 1.82 | .069 | .01 |
all50trials.BN.w | condition_dum (HIGH-BSCS.BN.w) | 233 | 0.72 | 3.81 | < .001 | .05 |
Interpretation: The effect of priming mindfulness on blast intensity is only significant for people with a high self-control.
Based on the results, it seems that the interaction of interest comes up for all six measures of blast aggression (intensity, duration, the combination of the two, and the first blast of each type), suggesting it is reliable.
The effect sizes are slightly lower for measures of first blast (sr2 = 0.3) than the average intensity or duration (sr2 = 0.4), or intensity * duration (sr2 = 0.5).
Therefore, based on the marginally larger effect size, perhaps it does make sense to use the intensity * duration combination in future studies. My intuition is also that the effect is more reliable for reactive aggression (all trials) than proactive aggression (first measure only). Another reason to avoid using only the first trials is that they lead to problems with the distributions (i.e., they are not normal and are difficult to transform to normality).
There is another reason why using the product of intensity and duration might make more theoretical sense. Technically speaking, if a participant sets the intensity to 10, but duration to 0, there is no actual sound blast for that trial. Similarly, if a participant sets the duration to 10, but intensity to 0, there is no actual sound blast for that trial. Taking the product of intensity and duration takes this dynamic into account. In contrast, other methods using the sum of intensity and duration, or yet again the average of all 50 trials (intensity and duration) does not. Taking the average of that trial with intensity = 10 and duration = 0 would yield 5, whereas it should be 0 because no sound was actually administered for that trial.
For the preregistration, I would suggest committing to using the average product of intensity and duration of all trials, and optimally transform it to normality via the bestNormalize package, as suggested above, and using the same design.
This strategy is similar to those who use the product of intensity with the log of duration, so the following papers could be cited (next tab).
Volume x Duration, average of all trials (25)
Arriaga, P., Monteiro, M. B., & Esteves, F. (2011). Effects of playing violent computer games on emotional desensitization and aggressive behavior. Journal of Applied Social Psychology, 41(8), 1900-1925. https://doi.org/10.1111/j.1559-1816.2011.00791.x
Participants’ ratings of the two indexes of noise (i.e., intensity, duration) that were administered to the opponent were multiplied to compute a global measure of aggressive behavior (see Bartholow et al., 2005).
Volume x Duration, multiplied averages of all trials (25)
Bartholow, B. D., Sestir, M. A., & Davis, E. B. (2005). Correlates and consequences of exposure to video game violence: Hostile personality, empathy, and aggressive behavior. Personality and Social Psychology Bulletin, 31(11), 1573-1586. https://doi.org/10.1177/0146167205277205
In this study, average noise intensity and duration settings were multiplied to form a composite aggressive behavior score.
Volume x log(Duration), average of all trials (25) / linear/quadratic contrasts across all trials (25)
Lindsay, J. J. & Anderson, C. A. (2000). From antecedent conditions to violent actions: A general affective aggression model. Personality and Social Psychology Bulletin, 26(5), 533-547. https://doi.org/10.1177/0146167200267002
The duration settings (hold times) were found to be positively skewed. We reduced this skew by subjecting the duration settings to a log transformation. For each participant, we multiplied the transformed duration setting by the intensity setting for each trial separately.
Volume x √Duration, average of all trials (25)
Carnagey, N. L. & Anderson, C. A. (2005). The effects of reward and punishment in violent video games on aggressive affect, cognition, and behavior. Psychological Science, 16(11), 882-889. https://doi.org/10.1111/j.1467-9280.2005.01632.x
An aggressive-energy score was calculated for each trial by taking the square root of the duration of noise chosen for the opponent and multiplying this value by the intensity of the noise chosen.
report::cite_packages(sessionInfo())